home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00018_Script_18 < prev    next >
Text File  |  1999-03-01  |  896b  |  34 lines

  1. on enterFrame
  2.   if rollOver(9) then 
  3.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  4.   end if
  5.   if rollOver(6) then 
  6.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  7.   end if
  8.   
  9.   if rollOver(4) then 
  10.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  11.     set the loc of sprite 8 to point(125, 239)
  12.     set the rect of sprite 8 to rect(125, 239, 433, 480)
  13.     set the member of sprite 8 to member "4-shck01"
  14.   end if
  15.   
  16.   if NOT rollOver(4) then
  17.     set the member of sprite 8 to member "4-end"
  18.     set the loc of sprite 8 to point(125, 239)
  19.     set the rect of sprite 8 to rect(125, 239, 433, 480)
  20.   end if
  21.   
  22.   
  23.   
  24.   if NOT rollover(9) AND NOT rollover(6) AND NOT rollover(4) then 
  25.     cursor -1   
  26.   end if
  27.   
  28.   
  29. end
  30.  
  31.  
  32. on exitFrame
  33.   go to the frame
  34. end